:root {
    --primary-color: #73B8D1;
    --text-color: #333333;
    --text-secondary: #666666;
    --text-light: #999999;
    --bg-color: #FFFFFF;
    --bg-secondary: #F8F9FA;
    --border-color: #E0E0E0;
    --section-padding: 80px 0;
}

.manufacturing {
    width: 100%;
    padding: 120px 0 var(--section-padding);
    background: var(--bg-color);
}

.manufacturing__container {
    max-width: 1200px;
    width: 90%;
    margin: 0 auto;
}

.manufacturing__header {
    text-align: center;
    margin-bottom: 60px;
}

.manufacturing__title {
    font-family: DMSerifText-Regular, serif;
    font-weight: 500;
    font-size: 2rem;
    color: #333333;
    line-height: 100px;
    letter-spacing: normal;
    margin-bottom: 0;
}

.manufacturing__subtitle {
    font-family: "DM Sans", sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: #666666;
    line-height: 32px;
    letter-spacing: normal;
    max-width: 840px;
    margin: 0 auto;
}

/* ========== About R&D Content (same as Quality Control page) ========== */
.about-rd__content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
    margin-bottom: 60px;
}

.about-rd__image-wrapper {
    overflow: hidden;
    border-radius: 4px;
}

.about-rd__image {
    width: 100%;
    height: auto;
    display: block;
}

.about-rd__text {
    padding: 0;
}

.about-rd__section-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--text-color);
    margin-bottom: 10px;
}

.about-rd__section-subtitle {
    font-size: 1rem;
    font-weight: 400;
    margin-bottom: 20px;
    letter-spacing: 0.02em;
}

.about-rd__description {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 15px;
}

.about-rd__features {
    display: grid;
    gap: 15px;
    margin-top: 25px;
}

.about-rd__features-column {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.about-rd__feature {
    display: flex;
    align-items: center;
    gap: 10px;
}

.about-rd__feature-check {
    color: var(--primary-color);
    font-weight: bold;
    font-size: 0.95rem;
}

.about-rd__feature-text {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* About R&D responsive */
@media screen and (max-width: 1200px) {
    .about-rd__content {
        gap: 40px;
    }
}

@media screen and (max-width: 992px) {
    .about-rd__content {
        grid-template-columns: 1fr;
        gap: 35px;
    }
}

@media screen and (max-width: 768px) {
    .about-rd__section-title {
        font-size: 1.3rem;
    }

    .about-rd__section-subtitle {
        font-size: 0.95rem;
    }

    .about-rd__description {
        font-size: 0.9rem;
    }

    .about-rd__features {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 480px) {
    .about-rd__content {
        gap: 25px;
        margin-bottom: 40px;
    }

    .about-rd__section-title {
        font-size: 1.15rem;
    }

    .about-rd__section-subtitle {
        font-size: 0.9rem;
        margin-bottom: 15px;
    }

    .about-rd__description {
        font-size: 0.85rem;
    }

    .about-rd__features {
        gap: 12px;
        margin-top: 20px;
    }

    .about-rd__feature-text {
        font-size: 0.85rem;
    }
}

.manufacturing__stats {
    display: flex;
    justify-content: center;
    gap: 80px;
    margin-bottom: 80px;
    flex-wrap: wrap;
}

.manufacturing__stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.manufacturing__stat-number {
    font-family: DM Sans;
    font-size: 48px;
    font-weight: 500;
    color: #73B8D1;
    line-height: 40px;
    margin-bottom: 4px;
}

.manufacturing__stat-label {
    font-family: "DM Sans", sans-serif;
    font-weight: 400;
    font-size: 20px;
    color: #666666;
    line-height: 36px;
    letter-spacing: 1px;
    text-align: center;
}

.manufacturing__process {
    margin-top: 80px;
    text-align: center;
}

.manufacturing__process-title {
    font-family: DMSerifText-Regular, serif;
    font-weight: 400;
    font-size: 2rem;
    color: #333333;
    line-height: 100px;
    margin-bottom: 0;
}

.manufacturing__process-subtitle {
    font-family: "DM Sans", sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: #666666;
    line-height: 32px;
    max-width: 840px;
    margin: 0 auto;
}

.manufacturing__steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 60px;
}

.manufacturing__step-item {
    text-align: center;
    box-sizing: border-box;
}

.manufacturing__step-image-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 8px;
}

.manufacturing__step-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.manufacturing__step-item:hover .manufacturing__step-image {
    transform: scale(1.05);
}

/*.manufacturing__step-number {*/
/*    position: absolute;*/
/*    bottom: 35px;*/
/*    left: 0;*/
/*    right: 0;*/
/*    margin: auto;*/
/*    width: 36px;*/
/*    height: 36px;*/
/*    background: #73B8D1;*/
/*    color: #FFFFFF;*/
/*    border-radius: 50%;*/
/*    display: flex;*/
/*    align-items: center;*/
/*    justify-content: center;*/
/*    font-family: DMSerifText-Regular, serif;*/
/*    font-size: 16px;*/
/*    font-weight: 400;*/
/*    z-index: 2;*/
/*}*/

.manufacturing__step-name {
    font-family: "DM Sans", sans-serif;
    font-weight: 400;
    font-size: 18px;
    color: #333333;
    line-height: 36px;
    margin: 0;
    padding-top: 12px;
}

.manufacturing__advantages {
    margin-top: 100px;
    text-align: center;
}

.manufacturing__advantages-title {
    font-family: DMSerifText-Regular, serif;
    font-weight: 400;
    font-size: 2rem;
    color: #333333;
    line-height: 100px;
    margin-bottom: 0;
}

.manufacturing__advantages-list {
    width: 79rem;
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.manufacturing__advantage {
    width: 100%;
    max-width: 1200px;
    height: auto;
    display: block;
    margin: 0 auto;
}

.manufacturing__advantage-item {
    flex: 0 0 calc((100% - 90px) / 4);
    max-width: calc((100% - 90px) / 4);
    background: #FFFFFF;
    border-radius: 12px;
    padding: 40px 20px;
    text-align: center;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.manufacturing__advantage-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.manufacturing__advantage-icon-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: #E0F4FF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.manufacturing__advantage-icon {
    width: 40px;
    height: 40px;
}

.manufacturing__advantageses {
    width: 100%;
    max-width: 1260px;
    height: 28rem;
    object-fit: cover;
    display: block;
    margin: 0 auto;
    border-radius: 8px;
}

.manufacturing__advantage-name {
    font-family: "DM Sans", sans-serif;
    font-weight: 400;
    font-size: 18px;
    color: #333333;
    line-height: 28px;
    margin: 0;
}

@media screen and (max-width: 1200px) {
    .manufacturing__title {
        font-size: 32px;
    }

    .manufacturing__process-title,
    .manufacturing__advantages-title {
        font-size: 32px;
    }

    .manufacturing__stats {
        gap: 60px;
    }

    .manufacturing__stat-number {
        font-size: 32px;
    }

    .manufacturing__steps {
        gap: 20px;
    }

    .manufacturing__step-image {
        height: 160px;
    }

    .manufacturing__step-number {
        width: 32px;
        height: 32px;
        font-size: 14px;
    }

    .manufacturing__advantages-list {
        gap: 25px;
    }

    .manufacturing__advantage-item {
        flex: 0 0 calc((100% - 75px) / 4);
        max-width: calc((100% - 75px) / 4);
        padding: 30px 15px;
    }

    .manufacturing__advantageses {
        height: 22rem;
    }
}

@media screen and (max-width: 992px) {
    .manufacturing {
        padding: 100px 0 var(--section-padding);
    }

    .manufacturing__title {
        font-size: 28px;
        line-height: 80px;
    }

    .manufacturing__process-title {
        font-size: 28px;
        line-height: 80px;
    }

    .manufacturing__subtitle,
    .manufacturing__process-subtitle {
        font-size: 15px;
    }

    .manufacturing__stats {
        gap: 50px;
        margin-bottom: 60px;
    }

    .manufacturing__stat-number {
        font-size: 28px;
    }

    .manufacturing__stat-label {
        font-size: 18px;
    }

    .manufacturing__steps {
        gap: 16px;
    }

    .manufacturing__step-image {
        height: 140px;
    }

    .manufacturing__step-name {
        font-size: 16px;
    }

    .manufacturing__step-number {
        width: 30px;
        height: 30px;
        font-size: 13px;
        bottom: 10px;
        left: 10px;
    }

    .manufacturing__advantageses {
        height: 18rem;
    }
}

@media screen and (max-width: 768px) {
    .manufacturing {
        padding: 80px 0 var(--section-padding);
    }

    .manufacturing__header {
        margin-bottom: 50px;
    }

    .manufacturing__title {
        font-size: 24px;
        line-height: 60px;
    }

    .manufacturing__process-title {
        font-size: 24px;
        line-height: 60px;
    }

    .manufacturing__subtitle,
    .manufacturing__process-subtitle {
        font-size: 14px;
    }

    .manufacturing__stats {
        gap: 40px;
        margin-bottom: 50px;
    }

    .manufacturing__stat-number {
        font-size: 24px;
    }

    .manufacturing__stat-label {
        font-size: 16px;
    }

    .manufacturing__advantages {
        margin-top: 60px;
    }

    .manufacturing__advantages-list {
        gap: 16px;
    }

    .manufacturing__advantage-item {
        flex: 0 0 calc((100% - 16px) / 2);
        max-width: calc((100% - 16px) / 2);
        padding: 24px 16px;
    }

    .manufacturing__advantage-icon-wrapper {
        width: 64px;
        height: 64px;
        margin: 0 auto 16px;
    }

    .manufacturing__advantage-icon {
        width: 32px;
        height: 32px;
    }

    .manufacturing__advantage-name {
        font-size: 16px;
        line-height: 24px;
    }

    .manufacturing__steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .manufacturing__step-image {
        height: 160px;
    }

    .manufacturing__step-name {
        font-size: 15px;
        padding-top: 8px;
    }

    .manufacturing__step-number {
        width: 28px;
        height: 28px;
        font-size: 12px;
        bottom: 10px;
        left: 10px;
    }

    .manufacturing__advantageses {
        height: 14rem;
    }
}

@media screen and (max-width: 480px) {
    .manufacturing {
        padding: 60px 0 60px;
    }

    .manufacturing__header {
        margin-bottom: 40px;
    }

    .manufacturing__title {
        font-size: 20px;
        line-height: 50px;
    }

    .manufacturing__process-title {
        font-size: 20px;
        line-height: 50px;
    }

    .manufacturing__subtitle,
    .manufacturing__process-subtitle {
        font-size: 13px;
    }

    .manufacturing__stats {
        gap: 30px;
        margin-bottom: 40px;
    }

    .manufacturing__stat-item {
        min-width: 120px;
    }

    .manufacturing__stat-number {
        font-size: 20px;
    }

    .manufacturing__stat-label {
        font-size: 14px;
    }

    .manufacturing__advantages {
        margin-top: 40px;
    }

    .manufacturing__advantages-title {
        font-size: 20px;
        line-height: 50px;
    }

    .manufacturing__advantages-list {
        gap: 12px;
        width: 100%;
    }

    .manufacturing__advantage-item {
        flex: 0 0 calc((100% - 12px) / 2);
        max-width: calc((100% - 12px) / 2);
        padding: 20px 12px;
        border-radius: 10px;
    }

    .manufacturing__advantage-icon-wrapper {
        width: 56px;
        height: 56px;
        margin: 0 auto 12px;
    }

    .manufacturing__advantage-icon {
        width: 28px;
        height: 28px;
    }

    .manufacturing__advantage-name {
        font-size: 14px;
        line-height: 22px;
    }

    .manufacturing__steps {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .manufacturing__step-image {
        height: 220px;
    }

    .manufacturing__step-name {
        font-size: 14px;
        padding-top: 10px;
    }

    .manufacturing__step-number {
        width: 28px;
        height: 28px;
        font-size: 12px;
        bottom: 12px;
        left: 12px;
    }

    .manufacturing__advantageses {
        width: 100%;
        height: auto;
    }
}
